* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-image: url("../images/cartographer.png");
}

h1 {
  font-family: sans-serif;
  font-size: 100px;
  color: #c8c8c8;
  text-align: center;
}

.title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 30vh;
  width: 100vw;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70vh;
  width: 100vw;
}

.container img {
  border-radius: 10px;
  margin: 50px;
  -webkit-box-shadow: 5px 5px 27px 3px rgba(0, 0, 0, 0.6);
          box-shadow: 5px 5px 27px 3px rgba(0, 0, 0, 0.6);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.container img:hover {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

@media screen and (max-width: 1400px) {
  .container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    margin-bottom: 100px;
  }
  .container img {
    width: 80vw;
  }
}
/*# sourceMappingURL=index.css.map */
